.add-to-cart{
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.add-to-cart__count-add, .add-to-cart__count-sub {
    border-radius: 50%;
    border: 1px solid #C9C9C9;
    background: white;
    min-width: 16px;
    height: 16px;
    line-height: 10px;
    font-weight: bold;
    text-align: center;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.add-to-cart__count-add:hover, .add-to-cart__count-sub:hover {
    background: #e20932;
    border-color: #e20932;
}
.add-to-cart__count-add {
    margin-left: 7px;
    position: relative;
    display: block;
}
.add-to-cart__count-add:before, .add-to-cart__count-add:after {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    background: url(../img/sprite.svg) 84.28094% 53.30882% no-repeat;
    top: 3px;
    left: 3px;
}
.add-to-cart__count-add:hover:after {
    background: url(../img/sprite.svg) 33.11037% 62.5% no-repeat;
}
.add-to-cart__count-sub {
    margin-right: 7px;
    position: relative;
    display: block;
}
.add-to-cart__count-sub:before, .add-to-cart__count-sub:after {
    position: absolute;
    content: '';
    width: 8px;
    height: 2px;
    background: url(../img/sprite.svg) 66.88963% 45.32374% no-repeat;
    top: 6px;
    left: 3px;
}
.add-to-cart__count-sub:hover:after {
    background: url(../img/sprite.svg) 69.56522% 45.32374% no-repeat;
}
.add-to-cart__count-val {
    font: 14px/18px 'GothamProBold', sans-serif;
}